.head {
    position: relative;
    width: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 10%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-bottom: 25px;
}

.head::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.79);
    z-index: 1;
}

.head h1,
.head p {
    position: relative;
    z-index: 2;
    color: #1a1a1a;
    margin: 0;
}

.head h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.80rem;
    font-weight: 800;
    line-height: 1.1;
}

.head p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-top: 15px;
    max-width: 500px;
    color: #444;
}

.top {
    background-position: top;
}

.bottom {
    background-position: bottom;
}